Imagick::resizeImage()函数是PHP中的内置函数,用于将图像缩放到所需的尺寸。
用法:
bool Imagick::resizeImage( int $columns, int $rows, int $filter, float $blur, bool $best_fit = false, bool $legacy = false )参数:该函数接受上述和以下所述的六个参数:
$columns:它指定图像的宽度。$rows:它指定图像的高度。$filter:它指定一个与FILTER常量之一相对应的整数。$blur:它指定模糊因子,其中> 1是模糊的,$best_fit(可选):它指定fit参数。$legacy (Optional):它指定了遗产。返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的Imagick::resizeImage()函数:
程序1:
输出:
程序2:
输出:
参考: https://www.php.net/manual/en/imagick.resizeimage.php